From: Glenn Morris Date: Wed, 2 Sep 2009 06:38:07 +0000 (+0000) Subject: Pass no argument to gnus-float-time rather than current-time. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~10695 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8474753636eac4aa2261e2d1724fdeca83ebb8b9;p=emacs.git Pass no argument to gnus-float-time rather than current-time. --- diff --git a/lisp/gnus/gnus-util.el b/lisp/gnus/gnus-util.el index fb2cdbce118..bd870a2f1c8 100644 --- a/lisp/gnus/gnus-util.el +++ b/lisp/gnus/gnus-util.el @@ -451,7 +451,7 @@ Returns \" ? \" if there's bad input or if an other error occurs. Input should look like this: \"Sun, 14 Oct 2001 13:34:39 +0200\"." (condition-case () (let* ((messy-date (gnus-float-time (safe-date-to-time messy-date))) - (now (gnus-float-time (current-time))) + (now (gnus-float-time)) ;;If we don't find something suitable we'll use this one (my-format "%b %d '%y")) (let* ((difference (- now messy-date))